* {
    box-sizing: border-box;
}

body {
    z-index: 1;
    background-color: #F8F8F8;
    margin-top: 0px;
    margin-right: 0px;
    padding: 0;
}

.main_content {
    margin-top: 100px;
}

.heading {
    text-align: center;
    font-size: 30px;
    font-family: verdana;
    padding: 15px;
}

form {
    margin: auto;
    margin-top: 25px;
    max-width: 500px;
    padding: 15px;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text],input[type=password] select, textarea {
    width: 100%;
    padding: 12px; /* Some padding */
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    max-width: 200px;
    background-color: #565656;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    /* When moving the mouse over the submit button, add a darker green color */
    input[type=button]:hover {
        background-color: #A2A2A2;
        color: black;
    }

#success {
    margin-left: 20px;
    font-size: 18px;
    color: #565656;
}
